/*header*/
.container1 {
  position: relative;
}

.background-image1 {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.overlay1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Anpassen der Transparenz und Farbe */
}

.logo {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 150px;
  /* Anpassen der Breite des Logobilds */
  height: auto;
}

.title1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 60px;
  font-weight: bold;
  text-align: center;
}

.title2 {
  text-align: center;
  color: black;
  font-size: 40px;
}